From: Paul Bolle Date: Mon, 23 Jan 2012 13:51:25 +0000 (+0100) Subject: decompressors: fix string typo 'bufer' X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=fbe7730763ffc1e35515eac1a2fe9d765fa3a309;p=xen.git decompressors: fix string typo 'bufer' Signed-off-by: Paul Bolle Signed-off-by: Jan Beulich Committed-by: Jan Beulich --- diff --git a/xen/common/bunzip2.c b/xen/common/bunzip2.c index d87bdcff9e..2eb70ab6c4 100644 --- a/xen/common/bunzip2.c +++ b/xen/common/bunzip2.c @@ -680,7 +680,7 @@ STATIC int INIT bunzip2(unsigned char *buf, unsigned int len, outbuf = malloc(BZIP2_IOBUF_SIZE); if (!outbuf) { - error("Could not allocate output bufer"); + error("Could not allocate output buffer"); return RETVAL_OUT_OF_MEMORY; } if (buf) @@ -688,7 +688,7 @@ STATIC int INIT bunzip2(unsigned char *buf, unsigned int len, else inbuf = malloc(BZIP2_IOBUF_SIZE); if (!inbuf) { - error("Could not allocate input bufer"); + error("Could not allocate input buffer"); i = RETVAL_OUT_OF_MEMORY; goto exit_0; } diff --git a/xen/common/unlzma.c b/xen/common/unlzma.c index 87b9e0a964..719fd0d5c8 100644 --- a/xen/common/unlzma.c +++ b/xen/common/unlzma.c @@ -556,7 +556,7 @@ STATIC int INIT unlzma(unsigned char *buf, unsigned int in_len, else inbuf = malloc(LZMA_IOBUF_SIZE); if (!inbuf) { - error("Could not allocate input bufer"); + error("Could not allocate input buffer"); goto exit_0; }